home *** CD-ROM | disk | FTP | other *** search
- name GE 550 Abs
-
- N 3
- G 2
- X ->34
- Z ->34
- D 2
- I ->34
- K ->34
- F >33
- T 3
- S 2
- M 2
-
- ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85 # List of g codes that are modal
-
- Sequence#s N 1 1 1 # Char, freq, incr & start
-
- HCode Z # X or X U 'Horizontal char.
- VCode X # Y or Y V 'Vertical char.
- FeedCode F # Feed rate char.
- Comment ( ) # Begin End comment char.
-
- Spindle 43 44 45 # Cw, ccw & stop m codes
- Coolant 8 9 7 # On, Off & Mist m codes
-
- CtrIncremental? Y # Y or N 'Inc or abs I & J
- ByQuadrants? Y # Y or N 'Break arcs at quadrants
-
- Inc/Abs G 91 90 # Inc & Abs char. & values
-
- Inch/MM 20 21 # Inch & Metric g codes
-
- CtrCode K I # I J or R or I J K L
-
- Feed G1 # Linear move
- Rapid F80 # Rapid positioning word
- Cw G2 # Circular move clockwise
- Ccw G3 # Circular move counter clockwise
-
- UppercaseComments? Y # Y or N 'Require uppercase comments
-
- Drill # Drilling canned/manual cycle
- Z[Depth] F[FRate]
- Z[H]
- end
- Peck # Pecking canned/manual cycle
- none
- end
-
- Tap # Tapping canned/manual cycle
- Z[H] F[FRate]
- end cancel
- Ream # Reaming canned/manual cycle
- Z[H] F[FRate]
- end cancel
-
- Bore # Boring canned/manual cycle
- Z[H] F[FRate]
- Z[SClear]
- end
-
- Cancel # Cancel a canned/manual cycle
- end
-
- StartCode # Start of the program
- G1 X[WorkV] Z[WorkH] F80
- End
-
- 1stToolChange # First tool change
- G92 X0 Z[Length]
- G90 T[Tool] M[Direct]
- G94 S[Speed] M[Cool]
- G1 X[V] Z[H] F80
- End
-
- Infeed # Enable cutter comp
- G1 X[V] Z[H] D[Dcomp] F[FRate]
- end
-
- Outfeed # Disable cutter comp
- G1 X[V] Z[H] F[FRate]
- end
- AutoThread # Automatic thread canned cycle
- G32
- End
-
- ToolChange # Secondary tool changes
- G1 X0 Z[LastLength] F80
- T0 M1
- G92 X0 Z[Length]
- G90 T[Tool] M[Direct]
- G94 S[Speed] M[Cool]
- G1 X[V] Z[H] F80
- End
-
- EndCode # End of the program
- G1 X0 Z[LastLength] F80 M24
- M25
- T0 M1
- G1 X[EndV] Z[EndH] F80
- M30
- End
-
-
-